home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / chrome / calendar.jar / content / calendar / calendar-subscriptions-dialog.xul < prev    next >
Extensible Markup Language  |  2008-01-09  |  5KB  |  117 lines

  1. <?xml version="1.0"?>
  2. <!--
  3.    - ***** BEGIN LICENSE BLOCK *****
  4.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.    -
  6.    - The contents of this file are subject to the Mozilla Public License Version
  7.    - 1.1 (the "License"); you may not use this file except in compliance with
  8.    - the License. You may obtain a copy of the License at
  9.    - http://www.mozilla.org/MPL/
  10.    -
  11.    - Software distributed under the License is distributed on an "AS IS" basis,
  12.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.    - for the specific language governing rights and limitations under the
  14.    - License.
  15.    -
  16.    - The Original Code is Sun Microsystems code.
  17.    -
  18.    - The Initial Developer of the Original Code is Sun Microsystems.
  19.    - Portions created by the Initial Developer are Copyright (C) 2008
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s):
  23.    -   Thomas Benisch <thomas.benisch@sun.com>
  24.    -
  25.    - Alternatively, the contents of this file may be used under the terms of
  26.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  27.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.    - in which case the provisions of the GPL or the LGPL are applicable instead
  29.    - of those above. If you wish to allow use of your version of this file only
  30.    - under the terms of either the GPL or the LGPL, and not to allow others to
  31.    - use your version of this file under the terms of the MPL, indicate your
  32.    - decision by deleting the provisions above and replace them with the notice
  33.    - and other provisions required by the GPL or the LGPL. If you do not delete
  34.    - the provisions above, a recipient may use your version of this file under
  35.    - the terms of any one of the MPL, the GPL or the LGPL.
  36.    -
  37.    - ***** END LICENSE BLOCK *****
  38. -->
  39.  
  40. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  41. <?xml-stylesheet href="chrome://calendar/content/calendar-subscriptions-dialog.css" type="text/css"?>
  42. <?xml-stylesheet href="chrome://calendar/skin/calendar-subscriptions-dialog.css" type="text/css"?>
  43.  
  44. <!DOCTYPE dialog
  45. [
  46.     <!ENTITY % dtd1 SYSTEM "chrome://calendar/locale/calendar-subscriptions-dialog.dtd" >  %dtd1;
  47. ]>     
  48.  
  49. <dialog
  50.   id="calendar-subscriptions-dialog"
  51.   title="&calendar.subscriptions.dialog.title;"
  52.   buttons="accept,cancel"
  53.   ondialogaccept="return onAccept();"
  54.   ondialogcancel="return onCancel();"
  55.   onload="return onLoad();"
  56.   onunload="return onUnload();"
  57.   onkeypress="onKeyPress(event);" 
  58.   persist="screenX screenY width height"
  59.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  60.  
  61.   <!-- Javascript includes -->
  62.   <script type="application/x-javascript" src="chrome://calendar/content/calendar-subscriptions-dialog.js"/>
  63.   <script type="application/x-javascript" src="chrome://calendar/content/calUtils.js"/>
  64.  
  65.   <vbox flex="1">
  66.     <grid flex="1">
  67.       <columns>
  68.         <column flex="1"/>
  69.         <column/>
  70.       </columns>
  71.       <rows>  
  72.         <row>
  73.           <label value="&calendar.subscriptions.dialog.search.label.value;"
  74.                  crop="end"/>
  75.         </row>
  76.         <row>
  77.           <textbox id="search-textbox" onkeypress="onTextBoxKeyPress(event);"/>
  78.           <button label="&calendar.subscriptions.dialog.search.button.label;"
  79.                   oncommand="onSearch();"/>
  80.         </row>
  81.         <row>
  82.           <label class="calendar-subscriptions-select-label"
  83.                  value="&calendar.subscriptions.dialog.select.label.value;"
  84.                  crop="end"/>
  85.         </row>
  86.         <row flex="1">
  87.           <calendar-subscriptions-richlistbox id="subscriptions-listbox" flex="1"/>
  88.           <vbox>
  89.             <button id="subscribe-button"
  90.                     label="&calendar.subscriptions.dialog.subscribe.button.label;"
  91.                     oncommand="onSubscribe();"/>
  92.             <button id="unsubscribe-button"
  93.                     label="&calendar.subscriptions.dialog.unsubscribe.button.label;"
  94.                     oncommand="onUnsubscribe();"/>
  95.           </vbox>
  96.         </row>
  97.       </rows>
  98.     </grid>
  99.     <deck id="status-deck" selectedIndex="0">
  100.       <hbox class="calendar-subscriptions-status-box">
  101.         <image class="calendar-subscriptions-status-icon"/>
  102.       </hbox>
  103.       <hbox class="calendar-subscriptions-status-box">
  104.         <image class="calendar-subscriptions-status-icon" busy="true"/>
  105.         <label value="&calendar.subscriptions.dialog.statusmessage.busy.label;"
  106.                crop="end"/>
  107.       </hbox>
  108.       <hbox class="calendar-subscriptions-status-box">
  109.         <image class="calendar-subscriptions-status-icon"/>
  110.         <label value="&calendar.subscriptions.dialog.statusmessage.nomatches.label;"
  111.                crop="end"/>
  112.       </hbox>
  113.     </deck>
  114.     <separator class="groove"/>
  115.   </vbox>
  116. </dialog>
  117.